/* Reset basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Logo Styling */
.logo a {
  font-size: 20px;
  font-weight: bold;
  color: black;
  text-decoration: none;
}
.logo span {
  color: white; /* Primary brand color (white) */
}

.logo-wrapper {
  display: flex;
  justify-content: center; 
  align-items: center;
  width: 100%;
  padding-top: 20px; /* Adds some clean space at the very top of your browser */
  margin-bottom: 100px; /* Pulls the logo closer to the background image below it. Adjust this number as needed! */
}


.centered-logo {
  max-width: 400px; /* Shrink or grow this number to change the logo size */
  height: auto;
  z-index: 10; /* Ensures the logo sits neatly on top of your background graphic */
  position: relative;
}

/* Make sure your logo isn't too massive or stretching weirdly */
.main-logo {
  max-width: 400px;/* Adjust this size to what looks best for your logo */
  height: auto;
  display: block;
}


/* Navbar Container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff; /* Clean white background */
  padding: 15px 15px;
  box-shadow: 0 15px 15px rgba(0,0,0,0.1); /* Subtle shadow for depth */
  position: sticky;
  top: 0;
  z-index: 100;
  
}

/* Navigation Links List */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 20px;
  transition: color 0.3s ease;
}

.nav-links .cta-btn:hover {
  background-color: #0056b3;
  color: black;
}

/* Hover Effect */
.nav-links a:hover {
  color: #007bff;
}

/* Call to Action (CTA) Button Style */
.nav-links .cta-btn {
  background-color: #007bff;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.nav-links .cta-btn:hover {
  background-color: #0056b3;
  color: black;
}

.hero-section {
  display: flex;
  flex-direction: column; /* Stacks the logo on top of the text */
  align-items: center;    /* Centers everything horizontally */
  justify-content: center;
  text-align: center;
  padding: 20px 20px;     /* Gives space at the top and bottom */
}

/* Optional: Add a subtle text shadow to make your headlines pop against that fiery background */
.hero-text h1 {
  font-size: 6rem;
  color: #ffffff;
  margin-bottom: 10px;    /* Adds space between the H1 and H2 */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); 
  text-align:center;
  white-space: nowrap;
}

.hero-text h2 {
  font-size: 3.5rem;
  color: red;         /* A gold color to match your theme */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  text-align: center;
  margin:0 auto;
  
}

p {
     text-align: center;
    background-color: transparent;
    border-color: rgb(65, 1, 1);
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
     font-size: 3.5rem;
     font-weight: bold;
     margin-bottom: 50px;
  }

a {
  color: red;
}
